projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
61f6c3e
)
; * which-key.el (which-key--get-keymap-bindings-1): Use eql.
author
Jeremy Bryant
<jb@jeremybryant.net>
Sat, 9 Mar 2024 22:08:57 +0000
(22:08 +0000)
committer
Justin Burkett
<justin@burkett.cc>
Tue, 12 Mar 2024 20:32:33 +0000
(16:32 -0400)
which-key.el
patch
|
blob
|
history
diff --git
a/which-key.el
b/which-key.el
index 54ec92d2311440248531f1f69b5f4bf1b1a65235..dcb5af7ce7d27e6a7ace7249684b39ec5b25f553 100644
(file)
--- a/
which-key.el
+++ b/
which-key.el
@@
-1886,7
+1886,7
@@
Requires `which-key-compute-remaps' to be non-nil."
(or all
;; event 27 is escape, so this will pick up meta
;; bindings and hopefully not too much more
- (
and (numberp ev) (= ev 27)
)))
+ (
eql ev 27
)))
(setq bindings
(which-key--get-keymap-bindings-1
keymap bindings key nil all ignore-commands)))